home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / events / DynamicEvent.as < prev    next >
Text File  |  2009-02-12  |  741b  |  31 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public dynamic class DynamicEvent extends Event
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "3.0.0.0";
  12.        
  13.       
  14.       public function DynamicEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  15.       {
  16.          super(param1,param2,param3);
  17.       }
  18.       
  19.       override public function clone() : Event
  20.       {
  21.          var _loc2_:* = null;
  22.          var _loc1_:DynamicEvent = new DynamicEvent(type,bubbles,cancelable);
  23.          for(_loc2_ in this)
  24.          {
  25.             _loc1_[_loc2_] = this[_loc2_];
  26.          }
  27.          return _loc1_;
  28.       }
  29.    }
  30. }
  31.